home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / MNetsrc.hqx / Mac TCP_IP Source v.33 / config.h < prev    next >
Text File  |  1989-04-23  |  1KB  |  42 lines

  1. /* Software options */
  2. #define    SERVERS        1    /* Include TCP servers */
  3. #define    TRACE        1    /* Include packet tracing code */
  4. #define    NSESSIONS    10    /* Number of interactive clients */
  5. #ifdef MAC
  6. #define _FINGER        1      /* Include Finger support */
  7. #undef CALLBK             /* Include Callbook Database support */
  8. #undef PROXY              /* Include Proxy ARP support */
  9. #endif
  10.  
  11. /* Hardware configuration */
  12. #undef    PC_EC            /* 3-Com 3C501 Ethernet controller */
  13. #define    SLIP        1    /* Serial Line IP subnet code */
  14. #define    KISS        1    /* KISS TNC code */
  15. #undef    HAPN            /* Hamilton Area Packet Network driver code */
  16. #undef    EAGLE            /* Eagle card driver */
  17. #undef    PACKET            /* FTP Software's Packet Driver interface */
  18. #undef    PC100            /* PAC-COM PC-100 driver code */
  19. #define    APPLETALK    1    /* Appletalk interface (Macintosh) */
  20. #define    NRS        1    /* NET/ROM async interface */
  21. #define    NETROM        1    /* NET/ROM network support */
  22.  
  23. #if (defined(NRS))
  24. #undef    NETROM
  25. #define    NETROM        1    /* NRS implies NETROM */
  26. #endif
  27.  
  28. #if (defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100))
  29. #define    AX25        1        /* AX.25 subnet code */
  30. #endif
  31.  
  32. /* KISS TNC, SLIP, NRS or PACKET implies ASY */
  33. #if (defined(KISS) || defined(PACKET) || defined(NRS) || defined(SLIP))
  34. #undef    ASY
  35. #define    ASY        1    /* Asynch driver code */
  36. #endif
  37.  
  38. #if (defined(PC_EC) || defined(PACKET))
  39. #define    ETHER    1        /* Generic Ethernet code */
  40. #endif
  41.  
  42.